..
/
download
import os
import subprocess
import Npp
def main():
scriptdir = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
s1kd_acronyms = scriptdir + "\\bin\\s1kd-acronyms.exe"
CREATE_NO_WINDOW=0x08000000
args = [s1kd_acronyms, "-D"]
p = subprocess.Popen(
args,
shell=True,
stdin=subprocess.PIPE,
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
creationflags=CREATE_NO_WINDOW)
(out, err) = p.communicate(Npp.editor.getText())
e = p.wait()
if e == 0:
Npp.editor.setText(out)
else:
Npp.notepad.messageBox(err)
main()
gopher://khzae.net/0/s1kd/s1kd-tools-npp-pythonscript/src/s1kd-tools/Acronyms/Remove acronym markup.py